home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / scopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  242 b   |  13 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_scopy (const int N, const float *X, const int incX, float *Y,
  7.          const int incY)
  8. {
  9. #define BASE float
  10. #include "source_copy_r.h"
  11. #undef BASE
  12. }
  13.